home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / utility / 5in1.zip / MAKEFILE < prev    next >
Text File  |  1991-04-07  |  412b  |  24 lines

  1. # Makefile for 5in1 program and Borland C++ BCC
  2.  
  3. # Normal compilation
  4. CC = BCC -c -ms    -W $<
  5. TC = /Tw /x /n /c c0ws
  6.  
  7. # Source level debugging
  8. CD = BCC -c -ms -v -W $<
  9. TD = /Tw /v /n /c c0ws
  10.  
  11. 5in1.exe: 5in1.obj 5in1.def 5in1.res
  12.     tlink $(TD) 5in1,\
  13.           5in1,\
  14.           NUL,\
  15.           cwins cs import,\
  16.           5in1
  17.     rc 5in1.res
  18.  
  19. .c.obj :
  20.     $(CD)
  21.  
  22. .rc.res :
  23.     rc -r $<
  24.